home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Magazin/MacEasy 2
/
Mac Magazin and MacEasy Magazine CD - Issue 02.iso
/
Sharewarebibliothek
/
Applikationen
/
Alpha.5.81 folder
/
Tcl
/
UserCode
/
smart.tcl
< prev
next >
Wrap
Text File
|
1994-06-08
|
609b
|
39 lines
proc smartDQuote {} {
global smartQuotes
if {!$smartQuotes} { insertText {"}; return }
if {[leftQ]} {
insertText {``}
} else {
insertText {''}
}
}
ascii 0x22 <s> smartDQuote TeX
proc smartQuote {} {
global smartQuotes
if {!$smartQuotes} { insertText {'}; return }
if {[leftQ]} {
insertText {`}
} else {
insertText {'}
}
}
ascii 0x27 smartQuote TeX
proc leftQ {} {
if {[getPos] == 0} {return 1};
set q [lookAt [expr [getPos]-1]]
case $q in {
{\t} {return 1}
{(} {return 1}
{\{} {return 1}
{[} {return 1}
{<} {return 1}
{\ } {return 1}
{\r} {return 1}
}
return 0
}